home *** CD-ROM | disk | FTP | other *** search
-
- Tables
-
- <TABLE [BORDER=n] [CELLSPACING=n] [CELLPADDING=n]
- [WIDTH=n|n%]>
- Start tag of a table. Must end with the </TABLE> tag.
- Following parameters are allowed:
-
- BORDER=n
- Gives the table a 3D-look. n is the width of the border
- in dots.
-
- CELLSPACING=n
- Sets the space between cells in dots.
-
- CELLPADDING=n
- Sets the space between the contains of the cells to the
- cells border.
-
- WIDTH=n|n%
- Sets the width of the table in dots or in percent of the
- page.
-
- Table tags
-
- <CAPTION [ALIGN=TOP|BOTTOM]>
- Start tag for the tables header. Use this tag inside the
- <TABLE> tag, but not within lines. You can show the
- header over or under the TABLE by setting ALIGN to TOP
- resp. BOTTOM.
-
- <TR [ALIGN=LEFT|CENTER|RIGHT] [VALIGN=TOP|MIDDLE|BOTTOM|
- BASELINE]>
- Start a new line in the table. ALIGN sets the horizontal
- adjusments for the lines text and VALIGN the vertical
- adjustment.
-
- <TD|TH [ALIGN=LEFT|CENTER|RIGHT] [VALIGN=TOP|MIDDLE|BOTTOM
- |BASELINE] [NOWRAP] [COLSPAN=N] [ROWSPAN=N] [WIDTH=N]>
- TD and TH insert a new cell. TH stands for 'table header'
- and shows up the textcontent of the cell in bold. ALIGN
- sets the adjusments of the text. NOWRAP prevent the
- browser from wrapping the cells contents. COLSPAN can be
- used to let the cell go over more than one column. Normal
- is 1. BROWSPAN is the same thing, but let the cell go over
- more than one line. Normal settings is 1. WIDTH sets the
- width of the cell.
-